home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTSTEP 3.1 (Developer) [x86]
/
NeXT Step 3.1 Intel dev.cdr.dmg
/
NextDeveloper
/
Examples
/
IndexingKit
/
Ledger
/
GlobalThings.h
< prev
next >
Wrap
Text File
|
1993-01-25
|
425b
|
18 lines
#import <objc/Object.h>
#define GLOBALVARIDENT "Global_Things"
@interface GlobalThings:Object
{
int currentSerial;
int runTimeHandle;
}
- init;
- (const char *)identification;
// implement IXRecordTranscription protocol for faster serialization.
- source:aSource didReadRecord:(unsigned)record;
- source:aSource willWriteRecord:(unsigned)record;
- (int )currentSerial;
- (int )consumeSerial;
- (unsigned int)handle;
@end